home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-11-14 | 1.4 KB | 27 lines | [TEXT/ttxt] |
- ; Sample hosts file demonstrating how to configure a DNS to work with
- ; HomeDoor to serve a number of virtual domains from one Web server.
-
- ; This is the Reverse lookup file for all hosts. It will be different depending
- ; on the "class" of your addresses (A, B or C). It is used to map addresses to names.
- ; See the HomeDoorSampleHosts file for general comments.
-
- ; You don't strictly need this file. Odds are your provider is handling reverse
- ; lookup services for you.
-
- ; ORIGIN
- $ORIGIN 10.in-addr.arpa.
-
- ; START OF AUTHORITY INFORMATION
- @ IN SOA dns.yourwebserver.com. hostmaster.yourwebserver.com. (
- 9511141 ; serial (yymmddn)
- 36000 ; refresh (every 10 hours)
- 7200 ; retry (after 2 hours)
- 604800 ; expire (after 1 week)
- 86400 ) ; minimum time to live (1 day)
- ; POINTER RECORDS
- ; Reverse lookup information. Note that the order of the digits is backwards, and
- ; the first digit comes from the ORIGIN statement.
- 1.0.0 IN PTR www.CompanyX.com.
- 2.0.0 IN PTR www.CompanyY.com.
- 254.0.0 IN PTR www.yourwebserver.com.
-